/* CSS Document */

/* ---------- header ---------- */
#header {
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  z-index: 100;
  transition: all 0.3s ease-in-out;
}
#header:after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: rgba(255,255,255,.2);
  content: "";
}

.header-logo {
  top: 0;
  left: 0;
  height: 100px; float:left;
}
.header-logo a {
  display: block;
  padding: 48px 40px 0;
}
.header-logo a img {
  width: 220px;          /* 修改logo宽度 */
  transform: translateY(-50%);filter: brightness(5);
}

/* navigation */
#header-nav-wrap {
  text-align: center;
}
#header-nav-wrap .header-main-nav {
  height: 100px;
  font-size: 15px;
}
#header-nav-wrap .header-main-nav li {
  display: inline-block;
  padding: 0 20px;
}
#header-nav-wrap .header-main-nav li a {
  display: inline-block;
  padding: 0 4px;
  color: #fff;
  line-height: 98px;
}
#header-nav-wrap .header-main-nav li a:hover {
  color: #ed6c00;
}
#header-nav-wrap .header-main-nav li.current a {
  border-bottom: 2px solid #ed6c00;
  color: #ed6c00;
}

.header-bar {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 100;
}
.header-search {
  float: left;
  padding: 30px;
  height: 40px;
  border-left: 1px solid rgba(255,255,255,.2);
}
.header-search .search-btn {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: url("../img/search-ico.png") no-repeat center;
}
.header-tel {
  float: left;
  position: relative;
  padding: 30px 40px 30px 70px;
  height: 40px;
  border-left: 1px solid rgba(255,255,255,.2);
  font-family: "DIN-Light";
  font-size: 24px;
  color: #fff;
  line-height: 40px;
}
.header-tel .tel-ico {
  position: absolute;
  top: 50%;
  left: 40px;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border-radius: 100%;
  background: url("../img/tel-ico.png") no-repeat center #fff;
}

/* header scroll top */
#header.on {
  background: #fff;
  box-shadow: 0 0 12px rgba(0,0,0,.1);
}
#header.on img {filter: none;}
#header.on:after {
 
}
#header.on #header-nav-wrap .header-main-nav li a {
  color: #333;
}
#header.on #header-nav-wrap .header-main-nav li a:hover {
  color: #ed6c00;
}
#header.on #header-nav-wrap .header-main-nav li.current a {
  color: #ed6c00;
}
#header.on .header-search {
  border-left: 1px solid rgba(0,0,0,.05);
}
#header.on .header-tel {
  border-left: 1px solid rgba(0,0,0,.05);
  color: #666;
}
#header.on .header-tel .tel-ico {
  background: url("../img/tel-ico.png") no-repeat center #f6f6f6;
}

/* menu trigger */
.header-menu-toggle {
  display: none;
  position: fixed;
  top: 12px;
  right: 20px;
  width: 40px;
  height: 40px;
  font-family: "montserrat-regular", sans-serif;
  font-size: 1.2rem;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  line-height: 40px;
  transition: all 0.3s ease-in-out;
}

.header-menu-toggle:hover,
.header-menu-toggle:focus {
  color: #fff;
}

.header-menu-toggle span {
  display: block;
  position: absolute;
  top: 50%;
  left: 8px;
  right: auto;
  bottom: auto;
  margin-top: -1px;
  width: 24px;
  height: 2px;
  background: #ababab;
  font: 0/0 a;
  color: transparent;
  transition: all 0.5s ease-in-out;
}

.header-menu-toggle span::before,
.header-menu-toggle span::after {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  content: "";
  transition: all 0.5s ease-in-out;
}

.header-menu-toggle span::before {
  top: -9px;
}

.header-menu-toggle span::after {
  bottom: -9px;
}

.header-menu-toggle.is-clicked span {
  background: rgba(255,255,255,0);
  transition: all 0.1s ease-in-out;
}

.header-menu-toggle.is-clicked span::before,
.header-menu-toggle.is-clicked span::after {
  background: white;
}

.header-menu-toggle.is-clicked span::before {
  top: 0;
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
}

.header-menu-toggle.is-clicked span::after {
  bottom: 0;
  -webkit-transform: rotate(225deg);
  -ms-transform: rotate(225deg);
  transform: rotate(225deg);
}

/* responsive */
@media only screen and (max-width: 1440px) {
  #header-nav-wrap {
    padding: 0 80px 0 0;
  }
  #header-nav-wrap .header-main-nav li {
    padding: 0 12px;
  }
}

@media only screen and (max-width: 1280px) {
  #header-nav-wrap {
    padding: 0 100px 0 0;
  }
  #header-nav-wrap .header-main-nav li {
    padding: 0 8px;
  }
}

@media only screen and (max-width: 1024px) {
  #header {
    height: 64px; z-index: 999; position: fixed;}

  .header-logo {
    height: 64px;
  }
  #header .container {padding:0;}
  .header-logo a {
    padding: 32px 15px 0;
  }
  .header-logo a img {
    width: 160px;
  }
#header.on img {
  filter: normal !important;
}
  #header-nav-wrap {
    display: none;
    left: 0;
    right: 0;
    padding: 100px 40px 40px;
    background: #21242b;
    box-shadow: 0 0 24px rgba(0,0,0,0.1);
  }
  #header-nav-wrap .header-main-nav {
    height: auto;
  }
  #header-nav-wrap .header-main-nav li {
    display: block;
    padding: 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  #header-nav-wrap .header-main-nav li a {
    display: block;
    padding: 16px 0;
    color: #fff;
    line-height: 20px;
  }
  #header-nav-wrap .header-main-nav li.current a {
    border-bottom: none;
  }
  
  #header.on #header-nav-wrap .header-main-nav li a {
    color: #fff;
  }

  .header-bar {
    position: static;
    background: #21242b;
  }
  .header-search {
    float: none;
    padding: 20px 0;
    height: auto;
    border-left: none;
  }
  .header-search .search-btn {
    display: inline-block;
    width: 100%;
    height: 48px;
    background: url("../img/search-ico.png") no-repeat center rgba(255, 255, 255, 0.03);
    background-size: 16px;
  }
  .header-tel {
    display: none;
  }

  .header-menu-toggle {
    display: block;
  }
}

/* ---------- footer ---------- */
footer {
  background: #f0f0f0;
  color: #535353;
}
footer a {
  color: #535353;
}
footer a:hover {
  color: #000;
}

.footer-con {
  padding: 100px 0 60px;
  border-bottom: 1px solid rgba(96,96,96,0.1);
}
.footer-logo {
  float: left;
  width: 20%;
}
.footer-logo img {width: 200px;
}
.footer-logo .mail {
  padding-top: 20px;
  line-height: 25px;
  padding-right: 30px;
}
.footer-nav {
  float: left;
  padding: 0 40px;
  width: 22%;
  border-left: 1px solid rgba(255,255,255,0.1);
}
.footer-nav .tit h3 {
  position: relative;
  height: 36px;
  font-size: 15px;
  color: #000;
}
.footer-nav .tit h3:after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 20px;
  height: 2px;
  background: #b9c1cb;
  content: "";
}
.footer-nav .con {
  padding-top: 24px;
  font-size: 14px;
  line-height: 30px;
}
.footer-nav .con a {
  display: inline-block;
  margin-right: 32px;
}
.footer-contact {
  float: left;
  padding: 0 40px;
  width: 24%;
  border-left: 1px solid rgba(96,96,96,0.1);
}
.footer-contact .tit h3 {
  position: relative;
  height: 36px;
  font-size: 15px;
  color: #000;
}
.footer-contact .tit h3:after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 20px;
  height: 2px;
  background: #b9c1cb;
  content: "";
}
.footer-contact .con {
  padding-top: 24px;
  font-size: 14px;
  line-height: 30px;
}
.footer-qrcode {
  float: right;
}
.footer-qrcode img {
  width: 120px; margin-left:20px;
}

.footer-btm {
  padding: 30px 0 30px;
  font-size: 13px;
  line-height: 24px;
}
.footer-btm .copyright {
  float: left;
}
.footer-btm .beian {
  float: right;
}
.footer-btm .beian span {
  padding-left: 12px;
}

/* responsive */
@media only screen and (max-width: 1024px) {
  .footer-contact {
    width: 24%;
  }
}

@media only screen and (max-width: 912px) {
  .footer-con {
    padding: 60px 0 40px;
    text-align: center;
  }
  .footer-logo {
    float: none;
    width: auto;
  }
  .footer-logo .mail {
    padding-top: 20px;
  }
  .footer-nav {
    float: none;
    padding: 32px 0;
    width: auto;
    border-left: none;
  }
  .footer-nav .tit h3 {
    display: none;
  }
  .footer-nav .con {
    padding-top: 0;
    line-height: 40px;
  }
  .footer-nav .con a {
    margin-right: 0;
    width: 33.33%;
  }
  .footer-contact {
    display: none;
  }
  .footer-qrcode {
    float: none;
  }

  .footer-btm {
    padding: 24px 0 24px;
    font-size: 12px;
    line-height: 20px;
    text-align: center;
  }
  .footer-btm .copyright {
    float: none;
  }
  .footer-btm .beian {
    float: none;
    padding-top: 8px;
  }
  .footer-btm .beian span {
    display: block;
    padding-left: 0;
  }
}

/* ---------- go to top ---------- */
#go-top {
  display: none;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 600;
}

#go-top a,
#go-top a:visited {
  display: block;
  width: 60px;
  height: 60px;
  border-radius: 5px;
  background: url("../img/go-top.png") no-repeat center rgba(0,0,0,0.6);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

#go-top a:hover,
#go-top a:focus {
  background: url("../img/go-top.png") no-repeat center rgba(0,0,0,1);
}

/* responsive */
@media only screen and (max-width: 768px) {
  #go-top {
    bottom: 0;
    right: 0;
  }

  #go-top a,
  #go-top a:visited {
    width: 48px;
    height: 48px;
    border-radius: 5px 0 0 0;
  }
}

/*悬浮链接*/
.suspension{position:fixed;z-index:55;right:0;bottom:85px;width:70px;height:240px;}
.suspension-box{position:relative;float:right;}
.suspension .a{display:block;width:44px;height:44px;background-color:#353535;margin-bottom:4px;cursor:pointer;outline:none;}
.suspension .a.active,
.suspension .a:hover{background:#F05352;}
.suspension .a .i{float:left;width:44px;height:44px;background-image:url(../images/side_icon.png);background-repeat:no-repeat;}
/* .suspension .a-service .i{background-position:0 0;} */
.suspension .a-service .i{width:20px;height:20px;margin-top:12px;margin-left:12px;background-image:url(../images/suspension-bg.png);background-repeat:no-repeat;background-position:0 0;}
.suspension .a-service-phone .i{width:20px;height:20px;margin-top:12px;margin-left:12px;background-image:url(../images/suspension-bg.png);background-repeat:no-repeat;background-position:-27px 0;}
.suspension .a-qrcode .i{background-position:-44px 0;}
.suspension .a-cart .i{background-position:-88px 0;}
.suspension .a-top .i{background-position:-132px 0;}
.suspension .a-top{background:#D2D3D6;display:none;}
.suspension .a-top:hover{background:#c0c1c3;}
.suspension .d{display:none;width:223px;background:#fff;position:absolute;right:67px;min-height:90px;border:1px solid #E0E1E5;border-radius:3px;box-shadow:0px 2px 5px 0px rgba(161, 163, 175, 0.11);}
.suspension .d .arrow{position:absolute;width:8px;height:12px;background:url(../images/side_bg_arrow.png) no-repeat;right:-8px;top:31px;}
.suspension .d-service{top:0;}
.suspension .d-service-phone{top:34px;}
.suspension .d-qrcode{top:78px;}
.suspension .d .inner-box{padding:8px 22px 12px;}
.suspension .d-service-item{border-bottom:1px solid #eee;padding:14px 0;}
.suspension .d-service .d-service-item{border-bottom:none;}
.suspension .d-service-item .circle{width:44px;height:44px;border-radius:50%;overflow:hidden;background:#F1F1F3;display:block;float:left;}
.suspension .d-service-item .i-qq{width:44px;height:44px;background:url(../images/side_con_icon03.png) no-repeat center 15px;display:block;transition:all .2s;border-radius:50%;overflow:hidden;}
.suspension .d-service-item:hover .i-qq{background-position:center 3px;}
.suspension .d-service-item .i-tel{width:44px;height:44px;background:url(../images/side_con_icon02.png) no-repeat center center;display:block;}
.suspension .d-service-item h3{float:left;width:112px;line-height:44px;font-size:15px;margin-left:12px;}
.suspension .d-service-item .text{float:left;width:112px;line-height:22px;font-size:15px;margin-left:12px;}
.suspension .d-service-item .text .number{font-family:Arial,"Microsoft Yahei","HanHei SC",PingHei,"PingFang SC","Helvetica Neue",Helvetica,Arial,"Hiragino Sans GB","Heiti SC","WenQuanYi Micro Hei",sans-serif;}
.suspension .d-service-intro{padding-top:10px;}
.suspension .d-service-intro p{float:left;line-height:27px;font-size:12px;width:50%;white-space:nowrap;color:#888;}
.suspension .d-service-intro i{background:url(../images/side_con_icon01.png) no-repeat center center;height:27px;width:14px;margin-right:5px;vertical-align:top;display:inline-block;}
.suspension .d-qrcode{text-align:center;}
.suspension .d-qrcode .inner-box{padding:20px 0;}
.suspension .d-qrcode p{font-size:16px;color:#93959c;}